Skip to main content

What’s New

Qrvey 8.7
Version 8.7 of the Qrvey platform is now available to customers! This version includes new features including area charts, the ability to pivot and export data, as well as numerous bug fixes and performance improvements.
Learn More
Qrvey 8.6
Version 8.6 of the Qrvey platform is now available to customers. This version includes several new feature enhancements and performance improvements.
Learn More
Required Update for 8.5.1
Attention 8.5.1 customers: for any 8.5.1 instance deployed prior to 08/05/2024, an update is required to ensure you are running the latest images.
Learn More
Qrvey 8.5
Version 8.5 (LTS) of the Qrvey platform is now available to customers. This version includes several new features and performance improvements.
Learn More
End-of-life Schedule
We've added a new article that lists the features and endpoints that have been scheduled for deprecation. All features and endpoints will be supported for (1) year after the release date of the LTS version that contains the alternative.
Learn More
Version: 8.1

Activity Log

The Activity Log widget is used to review what happened in different parts of the application. In the initial release this is limited to events related to platform releases and the CRUD (Create, Read, Update, and Delete) events of the applications. This is a really simple component easy to embed, with just a couple of parameters and has a minimalistic and clear design.

Widget Overview

This widget shows the user a detailed activity log. Each event of the application triggers an entry in the activity log. If the event registered is an error response, the log also shows the complete error details. This is useful to analyse application faults.

Samples

The following sample shows how to see the activity on releases or applications. The context property is set to "ADMIN" for release events and "APP" for application events.

Activity Log Sample Applications

In the following example the configuration is set to embed an activity log widget. This will show the application's details. The 3 required parameters are the server (your qrvey domain), the context (in this case "APP") and the referenceid. This last parameter, in this case, is the id of the user the application is linked to.

<log-widget server="https://your_qrvey_domain" context="APP" referenceid="<YOUR_USERID>"></log-widget>

<!-- your launcher js link (replace with your js link) -->
<script src="https://your_qrvey_domain/qrvey-log-widget-dev/activity-log-widget.js"></script>

Activity Log Sample Release

In this example, we have the activity log for a release on adminapp, this is the required configuration to embed this widget, all the properties are required, the server corresponds to your qrvey domain, the context, in this case, is "ADMIN" and finally, the referenceid correspond to the release ID.

<log-widget server="https://your_qrvey_domain" context="ADMIN" referenceid="<YOUR_RELEASEID>"></log-widget>

<!-- your launcher js link (replace with your js link) -->
<script src="https://your_qrvey_domain/qrvey-log-widget-dev/activity-log-widget.js"></script>